home *** CD-ROM | disk | FTP | other *** search
Borland Project Group | 2001-01-31 | 928 b | 27 lines |
- #------------------------------------------------------------------------------
- VERSION = BWS.01
- #------------------------------------------------------------------------------
- !ifndef ROOT
- ROOT = $(MAKEDIR)\..
- !endif
- #------------------------------------------------------------------------------
- MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
- DCC = $(ROOT)\bin\dcc32.exe $**
- BRCC = $(ROOT)\bin\brcc32.exe $**
- #------------------------------------------------------------------------------
- PROJECTS = OneToManyServer.exe OneToManyClient.exe OneToManyClient2.exe
- #------------------------------------------------------------------------------
- default: $(PROJECTS)
- #------------------------------------------------------------------------------
-
- OneToManyServer.exe: OneToManyServer.dpr
- $(DCC)
-
- OneToManyClient2.exe: OneToManyClient2.dpr
- $(DCC)
-
- OneToManyClient.exe: OneToManyClient.dpr
- $(DCC)
-
-
-